home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 907 b | 39 lines | [TEXT/MPS ] |
- // UApplicationRowSelect.h
- // Copyright © 1991-96 by Apple Computer, Inc. All rights reserved.
-
- #ifndef __UApplicationRowSelect__
- #define __UApplicationRowSelect__
-
- #ifndef __UAPPLICATION__
- #include "UApplication.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // TApplicationRowSelect
- //----------------------------------------------------------------------------------------
-
- class TApplicationRowSelect: public TApplication
- {
- MA_DECLARE_CLASS;
-
- public:
-
- TApplicationRowSelect();
- // Constructor
-
- virtual ~TApplicationRowSelect();
- // Destructor
-
- virtual void IApplicationRowSelect();
-
- // Documents
- virtual TDocument* DoMakeDocument(CommandNumber itsCommandNumber, TFile* itsFile); // Override
-
- // Commands
- virtual void DoSetupMenus(); // Override
- virtual void DoMenuCommand(CommandNumber aCommandNumber); // Override
-
- };
-
- #endif
-